remove all occurrences of a character in a list python

43

remove all occurrences of a character in a list python -

>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]

remove all of same value python list -

x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))

Python Remove all occurrences of a character from a string -

# Python program to remove all occurrences of a character from a string
text= 'Welcome, to, Python, World'
print(text.replace(',',''))

Comments

Submit
0 Comments